home *** CD-ROM | disk | FTP | other *** search
/ PC Zone 1994 October / PC Zone October 1994 Cover CD-Rom.bin / otb / otb.bat < prev    next >
DOS Batch File  |  1994-01-17  |  916b  |  79 lines

  1. @echo off
  2. :TOP
  3. \go-menu otb.mnu
  4. if errorlevel 13 goto END
  5. if errorlevel 12 goto HELP
  6. if errorlevel 11 goto INFO
  7. if errorlevel 10 goto SKYMAP
  8. if errorlevel 9 goto SKYGLOBE
  9. if errorlevel 8 goto PLANET
  10. if errorlevel 7 goto HUBBLE
  11. if errorlevel 6 goto GAMEKIT
  12. if errorlevel 5 goto GOODFIRM
  13. if errorlevel 4 goto VIPER
  14. if errorlevel 3 goto RIPTIDE
  15. if errorlevel 2 goto JAZZ
  16. if errorlevel 1 goto MYSTIC
  17. goto TOP
  18.  
  19. :MYSTIC
  20. cd mystic
  21. install
  22. goto END
  23.  
  24. :JAZZ
  25. cd jazz
  26. go_small
  27. goto END
  28.  
  29. :RIPTIDE
  30. cd riptid
  31. go_small
  32. goto END
  33.  
  34. :VIPER
  35. cd viper
  36. go_small
  37. goto END
  38.  
  39. :GOODFIRM
  40. cd goodfirm
  41. go_small
  42. goto END
  43.  
  44. :GAMEKIT
  45. cd gdk
  46. go_small
  47. goto END
  48.  
  49. :HUBBLE
  50. cd hubble
  51. go_small
  52. goto END
  53.  
  54. :PLANET
  55. cd planet
  56. go_small
  57. goto END
  58.  
  59. :SKYGLOBE
  60. cd skyglb
  61. go_small
  62. goto END
  63.  
  64. :SKYMAP
  65. cd skymap
  66. go_small
  67. goto END
  68.  
  69. :INFO
  70. see info.txt
  71. goto TOP
  72.  
  73. :HELP
  74. see help.txt
  75. goto TOP
  76.  
  77. :END
  78.  
  79.